home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat España 22
/
macformat_22.iso
/
Demos
/
Grolier Demos
/
Circus
/
LOOP.DIR
/
00003_Script_3
< prev
next >
Wrap
Text File
|
1994-12-10
|
579b
|
26 lines
on stopMovie
global myColorDepth,mySoundLevel
if the machineType <> 256 then
releaseRearWindow
set the colorDepth to myColorDepth
set the soundlevel to mySoundLevel
end if
end
on keydown
if the key ="q" and the commandDown then quit
if the key < 8 and the key > 0 then set the soundLevel to integer(the key)
if (the key = 8) or (the key = 9) then set the soundlevel to 7
if (the key = 0) then set the soundlevel to 1
end
on releaseRearWindow
global rwObj
if objectP( rwObj ) then
rwObj( mDispose )
end if
end